web3.js web3.utils.asciiToHex
web3.utils.asciiToHex(string)
web3.utils.fromAscii(string) // ALIAS, deprecated
渡された ASCII 文字列に対応する16進数文字列を返します。
パラメータ
1. string - String
戻り値
String
サンプル
code:example.js
web3.utils.asciiToHex('I have 100!');
"0x4920686176652031303021"
参考